From a07dd18ff993ebfcc689d934c6ff7d1a63992cc8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 14 May 2007 04:18:33 +0000 Subject: [PATCH] Fix size requisition for wide vertical separators. (#438113, Benjamin 2007-05-14 Matthias Clasen * gtk/gtkvseparator.c (gtk_vseparator_size_request): Fix size requisition for wide vertical separators. (#438113, Benjamin Berg) svn path=/trunk/; revision=17837 --- ChangeLog | 6 ++++++ gtk/gtkvseparator.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a4007ffe58..79c77331b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-05-14 Matthias Clasen + + * gtk/gtkvseparator.c (gtk_vseparator_size_request): Fix + size requisition for wide vertical separators. (#438113, + Benjamin Berg) + 2007-05-13 Emmanuele Bassi * gtk/gtksearchenginesimple.c: Include and use nftw() and diff --git a/gtk/gtkvseparator.c b/gtk/gtkvseparator.c index e401ec7e7c..cb8c6bdfb4 100644 --- a/gtk/gtkvseparator.c +++ b/gtk/gtkvseparator.c @@ -75,9 +75,9 @@ gtk_vseparator_size_request (GtkWidget *widget, NULL); if (wide_separators) - requisition->height = separator_width; + requisition->width = separator_width; else - requisition->height = widget->style->xthickness; + requisition->width = widget->style->xthickness; } static gint -- 2.30.2